home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’96 / Sessions ’96 / MacOS 8 Sessions / MacOS 8 Extensions / Demo Patch Code / MMSharedData.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-13  |  233 b   |  15 lines  |  [TEXT/CWIE]

  1. #pragma once
  2.  
  3. #include <types.h>
  4.  
  5. #define NUMAPPS                8
  6.  
  7. typedef struct MMAppListType
  8. {
  9.     Str31            appName;
  10.     unsigned long    appMMCount;
  11. } MMAppListType;
  12.  
  13. extern unsigned long        gMMNextAppNumber;
  14. extern MMAppListType        gMMAppList[NUMAPPS];
  15.